home *** CD-ROM | disk | FTP | other *** search
/ Clickx 21 / Clickx 21.iso / Menu.dxr / 00007_cursor script.ls < prev    next >
Encoding:
Text File  |  2005-06-22  |  261 b   |  20 lines

  1. on beginSprite me
  2.   if inside(point(the mouseH, the mouseV), sprite(me.spriteNum).rect) and not (the mouseDown) then
  3.     cursor(280)
  4.   else
  5.     cursor(0)
  6.   end if
  7. end
  8.  
  9. on mouseEnter
  10.   cursor(280)
  11. end
  12.  
  13. on mouseLeave
  14.   cursor(0)
  15. end
  16.  
  17. on endSprite
  18.   cursor(0)
  19. end
  20.